SPB Git forge

spb/immbot-ai

Public
1commits 1branches 0releases
1.5 MBsize
maindefault branch
20 days agolast push
TypeScript 98.3% CSS 0.9% Shell 0.7%
444 B · 15 lines tsx
Raw Blame History
1// Carte interactive des concepts du cours (graphe SVG maison).2import { Suspense } from "react";3import { ConceptMap } from "@/components/learning/concept-map";45export const metadata = { title: "Concepts" };67export default async function ConceptsPage({ params }: { params: Promise<{ course: string }> }) {8  const { course } = await params;9  return (10    <Suspense>11      <ConceptMap course={course.toLowerCase()} />12    </Suspense>13  );14}15